home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 May / CMCD0504.ISO / Software / Freeware / Programare / dspack / DSPACK231.exe / {app} / Demos / D6-D7 / Samples.bpg
Encoding:
Borland Project Group  |  2002-12-21  |  1.8 KB  |  68 lines

  1. #------------------------------------------------------------------------------
  2. VERSION = BWS.01
  3. #------------------------------------------------------------------------------
  4. !ifndef ROOT
  5. ROOT = $(MAKEDIR)\..
  6. !endif
  7. #------------------------------------------------------------------------------
  8. MAKE = $(ROOT)\bin\make.exe -$(MAKEFLAGS) -f$**
  9. DCC = $(ROOT)\bin\dcc32.exe $**
  10. BRCC = $(ROOT)\bin\brcc32.exe $**
  11. #------------------------------------------------------------------------------
  12. PROJECTS = DVDPlay.exe Compressor.exe FilterEnum.exe NullIP.dll NullNull.ax \
  13.   WaveDest.ax PlayCap.exe playwin.exe SnapShot.exe Compress.exe VideoCap.exe \
  14.   VMRMixer.exe VMRBitmap.exe VMRPlayWin.exe VMRSnapShot.exe ASFCap.exe
  15. #------------------------------------------------------------------------------
  16. default: $(PROJECTS)
  17. #------------------------------------------------------------------------------
  18.  
  19. DVDPlay.exe: DVDPlay\DVDPlay.dpr
  20.   $(DCC)
  21.  
  22. Compressor.exe: Compress\DIVX Compressor\Compressor.dpr
  23.   $(DCC)
  24.  
  25. FilterEnum.exe: Filter Enumerator\FilterEnum.dpr
  26.   $(DCC)
  27.  
  28. NullIP.dll: Filters\NullIP\NullIP.dpr
  29.   $(DCC)
  30.  
  31. NullNull.ax: Filters\NullNull\NullNull.dpr
  32.   $(DCC)
  33.  
  34. WaveDest.ax: Filters\WaveDest\WaveDest.dpr
  35.   $(DCC)
  36.  
  37. PlayCap.exe: PlayVideoCap\PlayCap.dpr
  38.   $(DCC)
  39.  
  40. playwin.exe: PlayWin\playwin.dpr
  41.   $(DCC)
  42.  
  43. SnapShot.exe: SampleGrabber\SnapShot.dpr
  44.   $(DCC)
  45.  
  46. VMRMixer.exe: VMR\Mixer\VMRMixer.dpr
  47.   $(DCC)
  48.  
  49. Compress.exe: Compress\File Recompressor\Compress.dpr
  50.   $(DCC)
  51.  
  52. VideoCap.exe: videocap\VideoCap.dpr
  53.   $(DCC)
  54.  
  55. VMRBitmap.exe: VMR\VMRBitmap\VMRBitmap.dpr
  56.   $(DCC)
  57.  
  58. VMRPlayWin.exe: VMR\VMRPlayWin\VMRPlayWin.dpr
  59.   $(DCC)
  60.  
  61. VMRSnapShot.exe: VMR\VMRSnapShot\VMRSnapShot.dpr
  62.   $(DCC)
  63.  
  64. ASFCap.exe: ASF\ASF Capture\ASFCap.dpr
  65.   $(DCC)
  66.  
  67.  
  68.